home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntinc20 / sys / utsname.h < prev    next >
C/C++ Source or Header  |  1992-05-15  |  457b  |  30 lines

  1. /*
  2.  * sys/utsname.h - header for uname emulation
  3.  * Written by Dave Gymer and placed in the public domain.
  4.  */
  5.  
  6. #ifndef _UTSNAME_H
  7. #define _UTSNAME_H
  8.  
  9. #include <compiler.h>
  10.  
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14.  
  15. struct utsname {
  16.     char sysname[9];
  17.     char nodename[9];
  18.     char release[9];
  19.     char version[9];
  20.     char machine[9];
  21. };
  22.  
  23. __EXTERN int uname __PROTO((struct utsname *));
  24.  
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28.  
  29. #endif /* _UTSNAME_H */
  30.